home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet bezpieczenstwa
/
mini Pentoo LiveCD 2006.1
/
mpentoo-2006.1.iso
/
livecd.squashfs
/
etc
/
init.d
/
spind
< prev
next >
Wrap
Text File
|
2006-01-09
|
469b
|
21 lines
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo/src/livecd-tools/spind.init,v 1.5 2005/03/01 18:13:51 wolf31o2 Exp $
depend() {
before local
}
start() {
ebegin "Starting spin daemon"
start-stop-daemon --start --quiet --exec /usr/sbin/spind &
eend $?
}
stop() {
ebegin "Stopping spind"
start-stop-daemon --stop --quiet --exec /usr/sbin/spind
eend $?
}